(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/intuition.h>
void CloseWindow()
SYNOPSIS
struct Window * window

LOCATION
In IntuitionBase at offset 12
FUNCTION
Closes a window. Depending on the display, this might not happen at the time when this function returns, but you must not use the window pointer after this function has been called.

INPUTS
window
The window to close
RESULT
None.

NOTES
The window might not have been disappeared when this function returns.

EXAMPLE
BUGS
SEE ALSO
OpenWindow(), OpenWindowTags()
INTERNALS
HISTORY
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
08.11.1996 aros
All OS function use now Amiga types

Moved intuition-driver protos to intuition_intern.h

31.10.1996 aros
Don't forget to free the RastPort
24.10.1996 aros
Use the official AROS macros over the __AROS versions.
15.10.1996 digulla
Two new functions: LockIBase() and UnlockIBase() Modified code to make sure that it is impossible to access illegal data (ie. fields of a window which is currently beeing closed).
21.09.1996 digulla
Debug code Only change the ActiveWindow is it is beeing closed Search for a new ActiveWindow
29.08.1996 digulla
Moved common code from driver to Intuition More docs
13.08.1996 digulla
First function for intuition.library